@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 25px;
    font-weight: 380;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    padding-top: 180px;
 
}
.logotype {
    margin: top 10px; 
    width: 50px;
   float: left;
   margin: 15px;
    
}

    
    
#up-arrow {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    display: none;
    cursor: pointer;
}

.container {
    width: 1000px;
    margin: 0 auto;
}

.row {
    display: block;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

.header {
    height: 80px;
    background: rgb(190, 43, 43);
    line-height: 80px;
    text-align: center;
    
    top: 0;
    left: 0;
    width: 100%;

}


.menu {
    height: 100px;
    background: #ffffff;
    padding-top: 5px;
    position: fixed;
    top: 0px;
    left: 0;
    width:100%;
    text-align: center;
}

.link-menu {
    display: inline-block;
    padding: 29px 10px;
    color: rgb(190, 25, 25);
    text-decoration: none;
    transition: 0.5s;
    font-size: 34px;
    font-weight: italic;
    
}

.link-menu:hover {
    background: #d58d8dd1;
    border-radius: 50px;
    
}

.content {
    padding: 20px;
    background: white;
}

.page-title {
    margin-bottom: 20px;

}

blockquote {
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
    border-left-color: rgb(126, 21, 21);
    border-left-width: 10px;
    border-left-style: solid;
    padding-left: 20px;
    font-style: italic;
}

.right-img {
    float:right;
    width: 300px;
    border-radius: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.left-img {
    float: left;
    width: 300px;
    border-radius: 10px;
    margin-right: 20px;
    margin-bottom: 20px;
}



hr {
    margin: 20px 0;
}

.w33 {
    float: left;
    width: 33%;
    padding: 10px;
}


.card {
    text-align: center;
    border: 10px solid rgb(207, 69, 69);
    display: block;
    text-decoration: none;
    box-align   : middle
}

.card-img {
    max-width: 100%;
    height: auto;
}

.card-title {
    font-size: 25px;
    font-weight: bold;
    color: rgb(110, 21, 21);
    text-decoration: none;
    padding: 5px 0;
}

p:first-letter {
    color: rgba(228, 38, 24, 0.672); 
    font-size: 35px;
   }

   ::selection {
    background: #d58d8dd1;
    }
    

   
